6.1.1 获取交易速度及折扣比例
#简要描述: 获取OTC提款速度
- 请求方式: POST
- 请求接口: https:// 网关域名/wallet-trade-merchant/v1/otc/payment/option/speed
- 请求媒体类型( JSON 数据格式 )Content-Type: application/json
查询参数
无
响应 json 示例
{
"code": 0,
"success": true,
"message": null,
"data": {
"NOW": {"expireMinute": -1,"discount": 0},
。 "FAST": {"expireMinute": 5,"discount": 0},
"NORMAL": {"expireMinute": 15,"discount": 20},
"SLOW": {"expireMinute": 60,"discount": 50}
}
}
响应data 参数说明
| 参数名称 | 类型 | 参数含义 | 备注 |
|---|---|---|---|
| NOW | object | 即时 | 当超时时间为负时,代表此订单不会进入匹配池(会被运营直接手动处理)。 |
| └expireMinute | string | 超时分钟 | |
| └ discount | number | 渠道费折扣 | |
| FAST | object | 快速 | |
| └expireMinute | string | 超时分钟 | |
| └ discount | number | 渠道费折扣 | |
| NORMAL | object | 一般 | |
| └expireMinute | string | 超时分钟 | |
| └ discount | number | 渠道费折扣 | |
| SLOW | object | 较慢 | |
| └expireMinute | string | 超时分钟 | |
| └ discount | number | 渠道费折扣 |